home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 December / CHIPNET Aralık 1997.iso / linux / redhat / misc / src / install / scsi.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-11  |  308 b   |  18 lines

  1. #ifndef H_SCSI
  2. #define H_SCSI
  3.  
  4. #include "devices.h"
  5.  
  6. struct scsiDeviceInfo {
  7.     char * deviceName;
  8.     char * info;
  9.     int id;
  10.     int bus;
  11. };
  12.  
  13. int setupSCSIInterfaces(int forceConfig, struct driversLoaded ** dl);
  14. int scsiDeviceAvailable(void);
  15. int scsiGetDevices(struct scsiDeviceInfo ** sdiPtr);
  16.  
  17. #endif
  18.